home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / os2tools / os2life / life < prev    next >
Text File  |  1988-02-29  |  538b  |  33 lines

  1. #
  2. #    Makefile for LIFE.EXE, OS/2 Game of Life
  3. #
  4. # Macros
  5. INC=..\..\..\include
  6. LIB=..\..\..\lib
  7.  
  8. # rules
  9.  
  10. .c.obj:
  11.     cl -c -Ox -I$(INC) $*.c
  12.  
  13. .asm.obj:
  14.     masm $*.asm;
  15.  
  16. # Dependencies
  17.  
  18. life.obj:    life.c    life
  19.  
  20. life2.obj:    life2.asm life
  21.  
  22. mouapi.obj:     mouapi.c life
  23.  
  24. int33h.obj:    int33h.asm life
  25.  
  26.  
  27. mouapi.lib:    mouapi.obj int33h.obj
  28.     lib    mouapi -+mouapi -+int33h;
  29.  
  30. life.exe:    life.obj life2.obj mouapi.lib
  31.     link /nod life life2,,, slibcep $(LIB)\doscalls;
  32.     bind life mouapi.lib $(LIB)\api.lib $(LIB)\doscalls.lib
  33.